home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / comm1 / lcall111.lha / callerid.doc < prev    next >
Text File  |  1996-01-15  |  4KB  |  109 lines

  1.                         Log Caller ID Version 1.11
  2.                            for Excelsior! BBS
  3.                            released 15 Jan 96
  4.  
  5.      Log CallerID logs callerid info to your Excelsior! log file and compares
  6. it to the users data. As of now, all it tells you is if the data matches
  7. or not.
  8.  
  9.      This is my first attempt at writing a ARexx program, so be kind
  10. with the complaints. User accepts all responsibility for any damage caused
  11. to their system.
  12.  
  13.      This program is released into the public domain. Feel free to post it
  14. on any BBS or on-line service.
  15.  
  16.      You should have 9 files in this archive:
  17.  
  18.      Callerid.Rexx      Logs all callerid info into log file.
  19.  
  20.      Callerid1.Rexx     Compares callerid with user data file, and logs
  21.                         result.
  22.  
  23.      caller             A copy of what is logged by Trapdoor from a Zoom
  24.                         V.34 modem.
  25.  
  26.      Callerid.doc       This file.
  27.  
  28.          **** Modify the next 5 files to display your own message ****
  29.  
  30.      verify             Notifies user callerid is being checked.
  31.  
  32.      confirmed          Notifies user callerid matches.
  33.  
  34.      bad                Notifies user callerid dors not match.
  35.  
  36.      blocked            Notifies user callerid is blocked.
  37.  
  38.      error              Notifies user callerid had some type of error.
  39.  
  40.  
  41.      Required is TrapDoor, a CallerID modem, Excelsior! BBS, and CallerID
  42. service from your local phone company. If this program works or not depends
  43. on how your phone company sends callerid information and your modem. The
  44. program works with a Zoom V.34 modem and CallerID service from GTE on
  45. Whidbey Island, Wa.
  46.  
  47.      To get it to work, make a directory called "Callerid" in your doors
  48. directory (Doors should be assigned, or change path in the first 2 files)
  49. Put all files in this directory. In your trapdoor.cfg file, LOGCALLERID
  50. should be set to a file called CALLER to callerid directory. For example:
  51.  
  52.      LOGCALLERID "Doors:callerid/caller"
  53.  
  54.      In your "text.login" file, place on a line by itself:
  55.  
  56.           \#0Doors:callerid/callerid.rexx\
  57.  
  58.      in your "text.welcome.user" file, place a line by itself:
  59.  
  60.           \#0Doors:callerid/callerid1.rexx\
  61.  
  62.      It should work assuming your callerid file has the phone number on the
  63. the third line of the file. Mine looks like the example below. My phone
  64. company doesn't send the caller name. It shouldn't make a difference as the
  65. program uses the last 7 charactors of the third line of the file. Only
  66. problem may be with private, out of area, and errors. The Zoom modem only
  67. sends one letter, if your modem sends the complete word, then it won't work
  68. correctly. If someone sends me a copy of the callerid file by Trapdoor with
  69. a private and out of area message, and tell me what modem they are using,
  70. I can modify the script.
  71.  
  72.           DATE = 0115
  73.           TIME = 0815
  74.           NMBR = 6754447
  75.  
  76.  
  77.                                                 Gerald
  78.  
  79.      Send feedback to Sysop@1:3401/210
  80.  
  81. *****************************************************************************
  82.  
  83. Version 1.0
  84.  
  85.    Logged callerID info in BBS log, and compared with user info.
  86.  
  87. Version 1.1
  88.  
  89.    Added external message files so Sysop can display custom messages to user
  90.    on results of CallerID check.
  91.  
  92. Version 1.11
  93.  
  94.    Cleaned up the script. Should work with more modems and phone companies.
  95.  
  96. Future
  97.  
  98.    Will be adding a hang up function for people you don't want calling
  99.    your board. Either blocked callerid or by phonenumber.
  100.  
  101.    Using the option for validating users instead of call back validation.
  102.  
  103.    Anything else that I think may be of use. 
  104.  
  105. Bugs
  106.  
  107.    It won't work with a multi-line system correctly, if at all. Have to
  108.    think about that one for awhile.
  109.